home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Environments / SmallEiffel 0.3.3 / SmallEiffel 68k / lib_show / bench1 / array_bench1.e next >
Encoding:
Text File  |  1996-06-13  |  324 b   |  21 lines  |  [TEXT/EDIT]

  1. -- Part of SmallEiffel -- Read DISCLAIMER file -- Copyright (C) 
  2. -- Dominique COLNET and Suzanne COLLIN -- colnet@loria.fr
  3. --
  4. class ARRAY_BENCH1
  5.  
  6. inherit BENCH1;
  7.  
  8. creation make
  9.  
  10. feature
  11.  
  12.   make is
  13.       local
  14.      array: ARRAY[INTEGER];
  15.       do
  16.      !!array.make (1,bench1_size);
  17.      bench1(array);
  18.       end;
  19.  
  20. end -- ARRAY_BENCH1
  21.